home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / dlibsrc.arc / CPUTS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-04  |  128 b   |  11 lines

  1. #include <stdio.h>
  2.  
  3. extern    int    putch();
  4.  
  5. void cputs(data)
  6.     register char *data;
  7.     {
  8.     while(*data)
  9.         putch(*data++);
  10.     }
  11.